home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / linux-bo / shoelace.tar / shoelace / shoe / config < prev    next >
Text File  |  1992-01-02  |  2KB  |  72 lines

  1. #
  2. #            Minix Configuration File
  3. #
  4. # Last Edit
  5. #
  6. # 04-Dec-1989    Converted for new environment code
  7. # 22-Apr-1989    Added run list
  8. # 01-Mar-1989    Added processor limitation
  9. # 15-Feb-1989    Removed interleave
  10. # 19-Oct-1988    Added device specification
  11. # 10-Oct-1988    Added keyboard option and removed fsck
  12. # 28-Sep-1988    Added boot option
  13.  
  14. # The run entry specifies a list of standalone images to load.
  15.  
  16. #run        /etc/system/db
  17.  
  18. # The boot entry locates an image put together using build. This
  19. # entry will be used if the load by components option fails.
  20.  
  21. boot        /usr/src/linux/linux/Image
  22.  
  23. # The following entry is passed to the kernel and thence to the
  24. # tty driver. It indicates the type of keyboard that is connected
  25. # to the console. The number is the scan code for the relevant
  26. # key. Please refer to the tty driver for more details.
  27.  
  28. setenv scancode 13
  29.  
  30. # The following entry is passed to the kernel. It is used to limit
  31. # the processor type for testing and compatibility:
  32. #
  33. # below 286:    forces 286's and 386's to use (unprotected) 8088 mode
  34. # 287 to 385:    forces 386's to use protected 286 mode
  35. # above 385:    no restriction
  36.  
  37. setenv processor 386
  38.  
  39. # The following entries locate the components of the Minix kernel.
  40. # The entries will be used in order to load and build Minix on the
  41. # fly. The "-s" option in front of a component name says to strip the
  42. # symbol table for the component.
  43.  
  44. fs        /etc/system/fs
  45. init        /etc/system/init
  46. mm        /etc/system/mm
  47. kernel        /etc/system/kernel
  48.  
  49. # The following entries specify the system devices. The possibilities are
  50. #
  51. # rootdev:    the root device (default /dev/ram).
  52. # ramimagedev:    the device to copy the RAM image from (default /dev/fd0).
  53. #        This is only used when rootdev is /dev/ram.
  54. # ramsize:    the size of the RAM disk (default 0). This is overridden
  55. #        by the size of ramimagedev when rootdev is /dev/ram.
  56. #
  57. # The directory is not scanned for the device names so the following
  58. # correspondences are hard coded (x is any number):
  59. #
  60. # /dev/ram:    device 1, minor 0 (the RAM disk)
  61. # /dev/fdx:    device 2, minor x (floppy x)
  62. # /dev/atx:    device 2, minor x (also floppy x - size is not checked)
  63. # /dev/hdx:    device 3, minor x (hard disk x / 5, partition x % 5)
  64. # bootdev:    the boot device, encoded in the same way.
  65. #
  66. # The leading "/dev/" is optional. All other names are regarded as illegal
  67. # and replaced by /dev/ram.
  68.  
  69. setdev rootdev bootdev
  70. #videomode 3 8
  71.  
  72.